w + Addition
w int sum = 4 + 7;
w - Subtraction
w float difference = 18.55 - 14.21;
w * Multiplication
w float product = 5 * 3.5;
w / Division
w int quotient = 14 / 3;
w % Modulo Reduction (Remainder from integer division)
w int remainder = 10 % 6;
w